{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %}
The results are shown in the following table.
| Your firm produced: | {% if player.id_in_group == 1 %} {{ p1unit }} 個 {% elif player.id_in_group == 2 %} {{p2unit}} 個 {% else %} {{p3unit}} 個 {% endif %} |
| The other firm produced: | {% if player.id_in_group == 1 %} P2の生産量は {{ player.p2unit }} 個. P3の生産量は {{ player.p3unit }} 個 {% elif player.id_in_group == 2 %} P1の生産量は {{ player.p1unit }} 個. P3の生産量は {{ player.p3unit }} 個 {% else %} P1の生産量は {{ player.p1unit }} 個. P2の生産量は {{ player.p2unit }} 個 {% endif %} |
| Total production: | {{ group.total_units }} units |
| Unit selling price: | {{ Constants.total_capacity }} ? {{ group.total_units }} = {{ group.unit_price }} |
| Your profit: | {% if player.id_in_group == 1 %} {{ player.p1.payoff }} {% elif player.id_in_group == 2 %} {{ player.p2.payoff}} {% else %} {{ player.p3.payoff}} {% endif %} |